home *** CD-ROM | disk | FTP | other *** search
/ Turnbull China Bikeride / Turnbull China Bikeride - Disc 2.iso / STUTTGART / GRAPHICS / RAYTRACING / POVRAY-2.2 / SCENES / level3 / FISH13 < prev    next >
Text File  |  1993-09-28  |  1KB  |  61 lines

  1. // Persistence Of Vision Raytracer version 2.0 sample file.
  2.  
  3.  
  4. //----------- fish out of water ----------- 3/10/92 miller
  5.  
  6. #include "colors.inc"
  7. #include "shapes.inc"
  8. #include "textures.inc"
  9. #include "fish.inc"
  10. #include "world12.inc"
  11. #include "stem1.inc"
  12.  
  13. camera {
  14.    location <-5, 0, -105>
  15.    direction <0, 0, 1.5>
  16.    up <0, 1, 0>
  17.    right <4/3, 0, 0>
  18.    look_at <-5, -5, 0>
  19. }
  20.  
  21. //-------light
  22. light_source { <200, 100, -100> color White }
  23.  
  24. //-------light
  25. light_source { <1000, 500, 400> color White }
  26.  
  27.  
  28. object { fish rotate -30*y }
  29. object { world12 }
  30.  
  31. object { stem1 scale <3, 3, 3> rotate <0, 0, 0> translate <80, -25, 150>  }
  32. object { stem1 scale <1.5, 1.5, 1.5> rotate <0, 80, 0> translate <70, -25, 90>  }
  33.  
  34.  
  35. /*
  36. fog { color DimGray distance 20000 }
  37. */
  38.  
  39.  
  40. /*-------------- SWAMP WATER ----------------------------*/
  41. object { 
  42.    Cube
  43.    scale <10000, 1, 500>
  44.    translate -25*y
  45.  
  46.    texture {
  47.       pigment { color red 0.0 green 0.07 blue 0.0 }
  48.       finish {
  49.          reflection 0.45
  50.          ambient 0.15
  51.          diffuse 0.6 phong 1.0 phong_size 80
  52.       }
  53.       normal {
  54.          ripples 0.7
  55.          frequency 0.08
  56.          translate <0, 0, 0>
  57.       }
  58.    }
  59. }
  60.  
  61.